home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / comm2 / mm_1_2.lha / MM / Rexx / MM_RunRexx.rexx < prev    next >
OS/2 REXX Batch file  |  1996-04-30  |  223b  |  18 lines

  1. /*
  2. ** This script Opens a File Requester allowing you to choose
  3. ** an ARexx script to run
  4. */
  5.  
  6. address 'MAILMANAGER'
  7.  
  8. script = 'MM:Rexx/'
  9.  
  10. MM_FileReq 'script'
  11.  
  12. if RC = 0 THEN DO
  13.     address command
  14.         rx script
  15.     END
  16.  
  17. EXIT
  18.